debug - определение. Что такое debug
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое debug - определение

DOS, OS/2 AND 32-BIT MICROSOFT WINDOWS COMMAND
DEBUG; Dos debug; DEBUG.EXE; DEBUG.COM; DEBUG (DOS Command); DEBUG (DOS command); MS-DOS DEBUG; PC DOS DEBUG; Novell DOS DEBUG; OpenDOS DEBUG; DR-DOS DEBUG; 86-DOS DEBUG; FreeDOS DEBUG; DEBUG (command)
  • <code>DEBUG.COM</code> (among other commands) in [[IBM PC DOS]] 1.0.
  • The [[Microsoft Windows 95]] <code>DEBUG.EXE</code> command
Найдено результатов: 402
debug         
  • A computer log entry from the Mark&nbsp;II, with a moth taped to the page
  • Xbox]] debug unit intended for developers.
PROCESS OF FINDING AND RESOLVING DEFECTS OR PROBLEMS WITHIN A COMPUTER PROGRAM
Debugged; Remote debugging; Debuggery; Post-mortem debugging; De Bug; Debug; Steps To Reproduce; Saff Squeeze; Printf debugging; Anti-debugging code; Anti-debugging; Print debugging; De-bug; Debugger detection; Steps to reproduce
¦ verb (debugs, debugging, debugged)
1. remove errors from (computer hardware or software).
2. detect and remove concealed microphones from.
Derivatives
debugger noun
debug         
  • A computer log entry from the Mark&nbsp;II, with a moth taped to the page
  • Xbox]] debug unit intended for developers.
PROCESS OF FINDING AND RESOLVING DEFECTS OR PROBLEMS WITHIN A COMPUTER PROGRAM
Debugged; Remote debugging; Debuggery; Post-mortem debugging; De Bug; Debug; Steps To Reproduce; Saff Squeeze; Printf debugging; Anti-debugging code; Anti-debugging; Print debugging; De-bug; Debugger detection; Steps to reproduce
(debugs, debugging, debugged)
When someone debugs a computer program, they look for the faults in it and correct them so that it will run properly. (COMPUTING)
The production lines ground to a halt for hours while technicians tried to debug software.
VERB: V n
DEBUG         
  • A computer log entry from the Mark&nbsp;II, with a moth taped to the page
  • Xbox]] debug unit intended for developers.
PROCESS OF FINDING AND RESOLVING DEFECTS OR PROBLEMS WITHIN A COMPUTER PROGRAM
Debugged; Remote debugging; Debuggery; Post-mortem debugging; De Bug; Debug; Steps To Reproduce; Saff Squeeze; Printf debugging; Anti-debugging code; Anti-debugging; Print debugging; De-bug; Debugger detection; Steps to reproduce
<software, tool> The bundled compiler/assembler for DOS/Windows after CP/M. [Did CP/M have "DEBUG"?] ["DOS Power Tools, Techniques, Tricks, and Utilities, PC Magazine, Paul Somerson Executive Editor, Bantam Books, 1988]. (2003-06-17)
debugging         
  • A computer log entry from the Mark&nbsp;II, with a moth taped to the page
  • Xbox]] debug unit intended for developers.
PROCESS OF FINDING AND RESOLVING DEFECTS OR PROBLEMS WITHIN A COMPUTER PROGRAM
Debugged; Remote debugging; Debuggery; Post-mortem debugging; De Bug; Debug; Steps To Reproduce; Saff Squeeze; Printf debugging; Anti-debugging code; Anti-debugging; Print debugging; De-bug; Debugger detection; Steps to reproduce
<programming> The process of attempting to determine the cause of the symptoms of malfunctions in a program or other system. These symptoms may be detected during testing or use by real users. Symptoms are often caused by factors outside the program, such as misconfiguration of the user's operating system, misunderstanding by the user (see PEBCAK) or failures in other external systems on which the program relies. Some of these are more in the realm of technical support but need to be eliminated. Debugging really starts when it has been established that the program is not behaving according to its specification (which may be formal or informal). It can be done by visual inspection of the source code, {debugging by printf} or using a debugger. The result may be that the program is actually behaving as specified but that the spec is wrong or the requirements on which it was based were deficient in some way (see BAD). Once a bug has been identified and a fix applied, the program must be tested to determine whether the bug is really fixed and what effects the changes have had on other aspects of the program's operation (see regression testing). The term is said to have been coined by Grace Hopper, based on the term "bug". (2006-11-27)
Debugging         
  • A computer log entry from the Mark&nbsp;II, with a moth taped to the page
  • Xbox]] debug unit intended for developers.
PROCESS OF FINDING AND RESOLVING DEFECTS OR PROBLEMS WITHIN A COMPUTER PROGRAM
Debugged; Remote debugging; Debuggery; Post-mortem debugging; De Bug; Debug; Steps To Reproduce; Saff Squeeze; Printf debugging; Anti-debugging code; Anti-debugging; Print debugging; De-bug; Debugger detection; Steps to reproduce
In computer programming and software development, debugging is the process of finding and resolving bugs (defects or problems that prevent correct operation) within computer programs, software, or systems.
Debug (disambiguation)         
WIKIMEDIA DISAMBIGUATION PAGE
Debugging is the process of finding and resolving of defects that prevent correct operation of computer software or a system.
Debug (magazine)         
  • May 2009 cover
MAGAZINE
De Bug (magazine)
De:Bug was a German magazine covering "electronic aspects of life", published monthly in Berlin from 1997 to 2014. Following a new definition of culture, the magazine kept track of electronic music styles such as techno, electro or house, as well as all intersections of daily life with digital technology, focusing on the internet as a social space influenced by issues such as interface design, web art, and file sharing.
Debug menu         
  • Gearheads]]'' that enables players to change the specifications of each toy
USER INTERFACE EXPOSING INTERNALS OF A COMPUTER PROGRAM FOR DEBUGGING
Debug room; Debug Menus; Debug Menu; Debug mode
A debug menu or debug mode is a user interface implemented in a computer program that allows the user to view and/or manipulate the program's internal state for the purpose of debugging. Some games format their debug menu as an in-game location, referred to as a debug room (distinct from the developer's room type of Easter egg).
source-level debugger         
COMPUTER PROGRAM USED TO TEST AND DEBUG OTHER PROGRAMS
Debuggers; Debugger front end; Debugging tool; Symbolic debugger; Source-level debugger; Debugger (computer); GNU Debugger front end; Omniscient Debugger; User:Unforgettableid/Omniscient Debugger; Debugger front-end; GNU Debugger front-end; Reverse debugging; Reverse debugger; Historical debugger; Historical debugging; Backwards debugger; Backwards debugging; Debugger frontend; Hardware support for debugging
<programming, tool> A debugger that shows the programmer the line or expression in the source code that resulted in a particular machine code instruction of a running program loaded in memory. This helps the programmer to analyse a program's behaviour in the high-level terms like source-level flow control constructs, procedure calls, named variables, etc instead of machine instructions and memory locations. Source-level debugging also makes it possible to step through execution a line at a time and set source-level breakpoints. In order to support source-level debugging, the program must be compiled with this option enabled so that extra information is included in the executable code to identify the corresponding positions in the source code. A symbolic debugger is one level lower - it displays symbols (procedure and variable names) stored in the executable but not individual source code lines. GDB is a widely used example of a source-level debugger. (2007-04-03)
Debug symbol         
SPECIAL KIND OF SYMBOL THAT ATTACHES ADDITIONAL INFORMATION TO THE SYMBOL TABLE OF AN OBJECT FILE, SUCH AS A SHARED LIBRARY OR AN EXECUTABLE, ALLOWING A SYMBOLIC DEBUGGER TO GAIN ACCESS TO INFORMATION FROM THE SOURCE CODE OF THE BINARY
Debug Symbols; Symbolic debugging; Debugging symbol
A debug symbol is a special kind of symbol that attaches additional information to the symbol table of an object file, such as a shared library or an executable. This information allows a symbolic debugger to gain access to information from the source code of the binary, such as the names of identifiers, including variables and routines.

Википедия

Debug (command)

The line-oriented debugger DEBUG.EXE is an external command in operating systems such as DOS, OS/2 and Windows (only in 16-bit/32-bit versions).

DEBUG can act as an assembler, disassembler, or hex dump program allowing users to interactively examine memory contents (in assembly language, hexadecimal or ASCII), make changes, and selectively execute COM, EXE and other file types. It also has several subcommands which are used to access specific disk sectors, I/O ports and memory addresses.